func github.com/klauspost/compress/flate.matchLen

14 uses

	github.com/klauspost/compress/flate (current package)
		deflate.go#L300: 				n := matchLen(win[i:i+minMatchLook], wPos)
		deflate.go#L334: 			n := matchLen(win[i:i+minMatchLook], wPos)
		deflate.go#L516: 						length := matchLen(d.window[prevIndex+checkOff:end], d.window[ch2+checkOff:])
		deflate.go#L556: 								length := matchLen(d.window[prevIndex+checkOff:end], d.window[ch2+checkOff:])
		fast_encoder.go#L158: 	return int32(matchLen(src[s:s1], src[t:]))
		fast_encoder.go#L179: 	return int32(matchLen(src[s:], src[t:]))
		level3.go#L107: 				l1, l2 := matchLen(src[s+4:], src[s-offset+4:]), matchLen(src[s+4:], src[s-o2+4:])
		level4.go#L114: 					l1, l2 := matchLen(src[s+4:], src[t+4:]), matchLen(src[nextS+4:], src[nextS-lOff+4:])
		level5.go#L686: 	return int32(matchLen(src[s:s1], src[t:]))
		level5.go#L707: 	return int32(matchLen(src[s:], src[t:]))
		matchlen_amd64.go#L16: func matchLen(a []byte, b []byte) int
		stateless.go#L256: 			l := int16(matchLen(src[s+4:], src[t+4:]) + 4)